Adding numbers topic

Add floating point values with full precision.

Classes

Adder Adding numbers
Creates a full precision adder for IEEE 754 floating point numbers, setting its initial value to 0.

Functions

fcumsum(Iterable<num?> iterable) Float64List Adding numbers
Returns a full precision cumulative sum of all values in the iterable.
fcumsumBy<T>(Iterable<T> iterable, num? accessor(T)) Float64List Adding numbers
Returns a full precision cumulative sum of all values yielded by the accessor function applied to each element in the iterable.
fsum(Iterable<num?> iterable) double Adding numbers
Returns a full precision summation of all values in the iterable.
fsumBy<T>(Iterable<T> iterable, num? accessor(T)) double Adding numbers
Returns a full precision summation of all values yielded by the accessor function applied to each element in the iterable.